.reading-progress {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #b399d4;
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 80px;
}

.progress-text {
    margin-bottom: 6px;
    font-weight: bold;
}

.progress-percent {
    font-size: 16px;
    margin-bottom: 8px;
}

.reset-btn {
    background: #8a6dae;
    border: none;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    width: 100%;
}

.reset-btn:hover {
    background: #6a4a8a;
}